dynamic translation - meaning and definition. What is dynamic translation
Diclib.com
Online Dictionary

What (who) is dynamic translation - definition

TECHNIQUE OF TRANSLATING THE MACHINE CODE OF ONE CPU OR PLATFORM INTO THE NATIVE MACHINE CODE OF ANOTHER FOR EMULATION
Dynamic translation; Dynarec; Dynamic recompiler

dynamic translation         
<architecture> A virtual machine implementation approach, used to speed up execution of byte-code programs. To execute a program unit such as a method or a function, the virtual machine compiles its bytecodes into (hardware) machine code. The translated code is also placed in a cache, so that next time that unit's machine code can be executed immediately, without repeating the translation. This technique was pioneered by the commercial Smalltalk implementation currently known as VisualWorks, in the early 1980s. Currently it is also used by some implementations of the Java Virtual Machine under the name JIT (Just In Time compilation). [Peter L. Deutsch and Alan Schiffman. "Efficient Implementation of the Smalltalk-80 System", 11th Annual Symposium on Principles of Programming Languages, Jan 1984, pp. 297-302]. (2002-04-15)
Just-in-time compilation         
DYNAMICALLY COMPILING BYTECODE TO MACHINE CODE DURING RUNTIME
JIT compiler; Just In Time compilation; JIT (computing); Just-in-time compiler; Just-in-Time Compilation; Just In Time Programming; JIT compilation; Just-in-time compiling; Just in time compiler; Dynamic translator; JIT-compilation; Just-In-Time compilation; Dynamo project; Just in time compilation; Run-time compiler; Runtime compiler
In computing, just-in-time (JIT) compilation (also dynamic translation or run-time compilations) is a way of executing computer code that involves compilation during execution of a program (at run time) rather than before execution. This may consist of source code translation but is more commonly bytecode translation to machine code, which is then executed directly.
Aerospool WT9 Dynamic         
  • Aerospool WT9 Dynamic with fixed landing gear
  • Aerospool WT9 Dynamic with retractable gear
  • Aerospool WT9 Dynamic in flight
LIGHT SPORT AIRCRAFT BY AEROSPOOL IN SLOVAKIA
Aerospool WT 9 Dynamic; Aerospool WT-9 Dynamic; Aerospool Dynamic
The Aerospool WT9 Dynamic is a Slovak ultralight and light-sport aircraft, designed and produced by Aerospool of Prievidza. The aircraft is supplied as a complete ready-to-fly-aircraft.

Wikipedia

Dynamic recompilation

In computer science, dynamic recompilation is a feature of some emulators and virtual machines, where the system may recompile some part of a program during execution. By compiling during execution, the system can tailor the generated code to reflect the program's run-time environment, and potentially produce more efficient code by exploiting information that is not available to a traditional static compiler.